| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 5 | angular.module('patternfly.filters').component('pfFilterPanel', {
bindings: {
config: '='
},
transclude: true,
templateUrl: 'filters/filter-panel/filter-panel.html',
controller: function () {
'use strict';
var ctrl = this;
}
});
|